home *** CD-ROM | disk | FTP | other *** search
- /* expand and collapse
- */
- function doExpand(paraNum){
- if (paraNum.style.display=="none"){paraNum.style.display="";}
- else{paraNum.style.display="none";}
- }
-
- popfont="Facename[, point size[, charset[, PLAIN BOLD ITALIC UNDERLINE]]]"
- Text1="The text for the first pop-up window."
- Text2="The text for the second pop-up window."
-
- function mOnHoover(color,decoration,transform) {
- oldcolor=window.event.srcElement.style.color
- window.event.srcElement.style.color=color;
- window.event.srcElement.style.textDecoration=decoration;
- window.event.srcElement.style.textTransform=transform;
-
-
- }
-
- function mOffHoover(){
- window.event.srcElement.style.color=oldcolor;
- window.event.srcElement.style.textDecoration='none';
- window.event.srcElement.style.textTransform='none';
- }